home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / nwlib15.zip / DEMO.ZIP / DEMO.DPR next >
Text File  |  1996-03-03  |  466b  |  20 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {winMain},
  6.   Printcap in 'PRINTCAP.PAS' {winCapture},
  7.   Stats in 'STATS.PAS' {winStats},
  8.   Userstat in 'USERSTAT.PAS' {winUserStats},
  9.   Nds in 'NDS.PAS' {winNDS},
  10.   Prop in 'PROP.PAS' {winProp},
  11.   Objedit in 'OBJEDIT.PAS' {winObjEdit},
  12.   List in 'LIST.PAS' {winList},
  13.   Trustee in 'TRUSTEE.PAS' {winTrustee};
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.CreateForm(TwinMain, winMain);
  18.   Application.Run;
  19. end.
  20.